
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
fslightbox-react
Advanced tools
A capable React component for displaying images, videos, or, through custom sources, anything you want in a full-window overlying box.
A React component for displaying images, videos, or, through custom sources, anything you want in a clean overlying box. The project's website: https://fslightbox.com.
Dependency | Version |
---|---|
react | at least 16.8.0 |
react-dom | at least 16.8.0 |
npm install fslightbox-react
The .tgz archive, in its entirety, should be put somewhere in the end project, for example, "./src/lib". Then run the package manager's install command with the path to that archive. The command have to be run from the directory where your project's "package.json" file is.
$ npm install ./src/lib/[lightbox archive name]
For example:
$ npm install ./src/lib/fslightbox-react-1.0.0.tgz
import React, { useState } from "react";
import FsLightbox from "fslightbox-react";
function App() {
// To open the lightbox change the value of the "toggler" prop.
const [toggler, setToggler] = useState(false);
return (
<>
<button onClick={() => setToggler(!toggler)}>
Open the lightbox.
</button>
<FsLightbox
toggler={toggler}
sources={[
'https://i.imgur.com/fsyrScY.jpg',
'https://www.youtube.com/watch?v=xshEZzpS4CQ',
'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4'
]}
/>
</>
);
}
export default App;
Available at: https://fslightbox.com/react/documentation.
Browser | Works? |
---|---|
Chrome | Yes |
Firefox | Yes |
Safari | Yes |
Edge | Yes |
IE 11 | Yes |
FAQs
A capable React component for displaying images, videos, or, through custom sources, anything you want in a full-window overlying box.
The npm package fslightbox-react receives a total of 10,460 weekly downloads. As such, fslightbox-react popularity was classified as popular.
We found that fslightbox-react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.